home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / bash / bash_110 / mint / bash110s.zoo / bash-1.10 / ChangeLog < prev    next >
Encoding:
Text File  |  1991-10-03  |  27.5 KB  |  776 lines

  1. Thu Oct  3 16:28:55 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  2.  
  3.     * parse.y (command_token_position) Now a define which calls
  4.     reserved_word_acceptable (), excluding SEMI_SEMI in case clauses.
  5.  
  6.     * machines.h (description for ultrix && mipsel); MIPS Ultrix 4.2
  7.     machines still have alloca in the library, and it works perfectly
  8.     well; the only thing to be avoided is the inclusion of alloca.h.
  9.  
  10.     * builtins/kill.def (kill_builtin).  Allow negative signal
  11.     specifiers to signify process groups.
  12.  
  13. Fri Sep  6 17:34:38 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  14.  
  15.     * execute_cmd.c: (do_redirect_internal) Fix to >&- of stdout
  16.     redirection bug.
  17.  
  18.     Minor cosmetic changes to many files.
  19.     shell.h, make_cmd.c, copy_cmd.c, parse.y, 
  20.         
  21.  
  22. Sun Jul 28 19:28:17 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  23.  
  24.     * Moved several scripts and support files into ./support.  Files
  25.     moved and renamed: makeargs.sh -> mksysdefs, cppmagic.sh ->
  26.     cppmagic, cat-s, getcppsyms.c info, mail-shell, make-tarfile.
  27.  
  28.     * Moved glob/, readline/, and malloc/ (renamed from alloc-files)
  29.     into a subdirectory called lib.  This affected cpp-Makefile.
  30.  
  31.     * cpp-Makefile: Use #defines to create a macro which builds
  32.     libraries, regardless of the directory that the source code
  33.     resides in.
  34.  
  35. Thu Jul 11 21:00:20 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  36.  
  37.     * builtins/kill.def: Make the exit status of `kill' be SUCCESS if
  38.     any of the killed processes accepted the signal.
  39.  
  40.     * psize.c, jobs.c, shell.c, parse.y: Make signal handler functions
  41.     return a value if VOID_SIGHANDLER is not defined.
  42.  
  43.     * parse.y, general.h, bashline.c builtins/type.def: Change
  44.     token_word_alist to word_token_alist, and typedef STRING_INT_ALIST
  45.     in general.h.  Use the new definitions in bashline.c,
  46.     builtins/type.def, and parse.y.
  47.  
  48.     * bashline.c: (command_word_completion_function) Complete on
  49.     shell reserved words after trying aliases.
  50.  
  51. Tue Jul  9 07:01:33 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  52.  
  53.     * New file maxpath.h contains the right things to define
  54.     MAXPATHLEN on various systems.
  55.  
  56.     * (shell.h) Always include unwind_prot.h.
  57.  
  58.     * HUGE CHANGE.  All builtins appear in builtins/*.def.  There is a
  59.     new program called builtins/mkbuiltins.c which is called to
  60.     generate .c files from the .def files.  It also makes a header
  61.     file containing external declarations, and a C source file
  62.     containing the shell_builtins[] array.
  63.  
  64.     The builtins are compiled into builtins/libbuiltins.a, and then
  65.     that file is one of the OBJECTS in bash-Makefile.
  66.  
  67. Sun Jul  7 02:23:21 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  68.  
  69.     * builtins.c: Add `--' flag to trap, type, umask and hash
  70.     builtins.
  71.  
  72.     * jobs.c: (set_job_control) returns the original value of
  73.     job_control.  Remove extra ignore of SIGQUIT.
  74.  
  75.     * config.h: Add define of STANDARD_UTILS_PATH for `command -p'.
  76.     Add "defined" for UNIXPC where it was missing.
  77.  
  78.     * subst.c: make and use QUOTED_CHAR define.  Test for possibilty
  79.     of tilde expansion before doing it.
  80.  
  81.     * make_cmd.c: Only do quote_removal on here document delimiters.
  82.  
  83.     * builtins.c: (command_builtin) Add Posix -p flag to `command'
  84.     builtin.  Random textual changes to clarify the meaning of the
  85.     output for various commands.
  86.  
  87.     exec_builtin now restores the default signal handlers.
  88.  
  89.     * glob.c: Avoid globbing in directories that begin with `.' if the
  90.     glob pattern (and noglob_dot_filenames) don't allow it.
  91.  
  92.     * test.c: Avoid calling strlen () when we only care if the length
  93.     is non-zero.  Instead, test the first byte.
  94.  
  95.     * jobs.c(kill_pid) Kill the process pointed to by P, not the last
  96.     one we looked at.
  97.  
  98.     * shell.c: Only source the .bashrc if this is not a login shell,
  99.     even if we are not sourcing .bash_profile.
  100.  
  101.     Xenix's setvbuf () has 2 middle arguments reversed.
  102.  
  103.     Run the exit trap when the shell is dying from a terminating
  104.     signal (like SIGINT).
  105.  
  106.     * general.c:(get_hostname) Change `uts' to `ut' to avoid conflict
  107.     with Amdahl compiler.
  108.  
  109.     * execute_cmd.c:(execute_simple_command) changes to make
  110.     this_shell_bultin always reflect the current command; i.e. NULL if
  111.     not a builtin, otherwise, the address of the currently executing
  112.     builtin.
  113.  
  114.     variables.c:(find_variable) Check temporary environment if current
  115.     execution environment is a builtin or function.
  116.  
  117.     flags.h: Prevent multiple inclusion, add declarations for
  118.     functions found in flags.c.
  119.  
  120. Mon Jun 24 20:44:47 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  121.  
  122.     * execute_cmd.c: (do_redirections) Hack errors on variable names
  123.     as redirectee's to display themselves correctly.  New function
  124.     expandable_redirection_filename () takes a (REDIRECT *) and
  125.     returns non-zero if the redirectee should be expanded or treated
  126.     as an integer.
  127.  
  128.     * builtins.c: New builtin documentation: bind_builtin ().
  129.       bashline.c: New builtin code: bind_builtin ().
  130.       mailcheck.c: Cosmetic changes.
  131.  
  132. Mon Jun 10 10:47:13 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  133.  
  134.     * machines.h: Group all of the i386 machines together.  Merge SCO
  135.     port.
  136.  
  137.     * jobs.c: Use SCO instead of M_UNIX.
  138.  
  139.     * shell.c, jobs.c, execute_cmd.c, general.c, builtins.c,
  140.     make_cmd.c, subst.c, general.h: New file filecntl.h should be
  141.     included wherever you needed to include fcntl.h.
  142.  
  143.     * cpp-Makefile: #undef i386 around Makefile assignments where the
  144.     preprocessor might munge it.
  145.  
  146.     * test,c, execute_cmd.c: moved definition of group_member () into
  147.     test.c from execute_cmd.c so test.c can be compiled standalone.
  148.  
  149. Tue May 28 19:02:41 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  150.  
  151.     * expr.c: (evalexp) Save and restore the longjmp destination of
  152.     evalbuf for each call to evalexp () to allow recursive calls to
  153.     error correctly.
  154.  
  155.     * makeargs.sh: Fix typo for determining RISC6000.
  156.  
  157.     * machines.h: Fix bugs in machine descriptions according to bug
  158.     reports.
  159.  
  160.     * execute_cmd.c: (execute_simple_command) Remove all of the execve
  161.     code and shell interpretation code placing it into a new function
  162.     called shell_execve ().
  163.  
  164.     * builtins.c (exec_builtin) call shell_execve () instead of
  165.     execve ().
  166.  
  167.     * Makefile: Add $(STRERROR) to flags.
  168.  
  169. Fri May 24 12:05:45 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  170.  
  171.     * cpp-Makefile: Pass AR to library builds, same as RANLIB.
  172.  
  173.     * general.c: Move definitions of index () and rindex () to top of
  174.     file so that those systems which do not have them get the return
  175.     type correct.
  176.  
  177.     * Fixed typo in README; removed MAINTAINENCE (mispelled) from
  178.     cpp-Makefile, since it is no longer used.  Fixed mispeslling in
  179.     machines.h of Sun Miscrosystems.
  180.  
  181.     * bashline.c: (command_word_completion_function) Interpret tildes
  182.     while completing along PATH.  This may be obsoleted in the near
  183.     future, since we might do rms's `=~' and `:~' expansion hacks.
  184.  
  185.     * all files: Remove extraneous tab characters in comments.
  186.  
  187.     * Makefile: Change rules for SQUASH_BLANKS; default to using
  188.       awk script.
  189.  
  190.     * cat-s: New awk script file added to distribution.
  191.  
  192. Thu May 23 17:56:35 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  193.  
  194.     * machines.h: Default to USE_GNU_MALLOC and HAVE_DUP2.  Turn off
  195.     USE_GNU_MALLOC for Sun workstations because of YP bug in Sun.
  196.     cpp-Makefile: Add -DHAVE_DUP2 to CFLAGS if you have it.  Add
  197.     -DHAVE_ALLOCA to cflags if you have it, so config.h gets it.
  198.  
  199.     * test.c: (two_arguments) Fix typo in call to unop ().
  200.     (posixtest) Add missing `break' for 4 argument case.
  201.  
  202. Wed May 22 15:02:31 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  203.  
  204.     * shell.c: (maybe_save_history): add a call to using_history ()
  205.     before checking history_lines_this_session.
  206.  
  207. Sun May 19 17:47:15 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  208.  
  209.     * Makefile: Use an awk script instead of cat -s, since that
  210.     doesn't work on USG systems.  Pass MFLAGS to recursive invocations
  211.  
  212.     * bashline.c: All local names are now declared static.
  213.     (display_shell_version) outputs carriage return after printing the
  214.     shell version so that readline will not be confused.  New
  215.     functions operate_and_get_next (), and  set_saved_history () are
  216.     compaible wth the C-o command from K*rn shell.
  217.  
  218.     * bashline.c: Only allow enabled commands to be completed on.
  219.  
  220.     * braces.c: When compiled with -DSHELL, the brace_arg_separator
  221.     character must be seen for any change to take place in
  222.     brace_expand ().
  223.  
  224.     * bultins.c: (parse_and_execute) Save and restore top_level
  225.     jmp_buf, and supply an alternate place for throws to top_level
  226.     to go to.  This is for arithmetic and bad substitution errors.
  227.  
  228.     * builtins.c: (hash_builtin) use absolute_program () instead of
  229.     absolute_pathname ().
  230.  
  231.     * cpp-Makefile: Numerous changes include using cpp defines for
  232.     readline and termcap targets for those `make' programs which don't
  233.     correctly handle variable expansion in the target postion,
  234.     .distribution now depends on version.h, `make clean' now
  235.     removes created support files. substantial reorganization.  Pass
  236.     $(RANLIB) to library building makes.
  237.  
  238.     * builtins.c (builtin_error) Only print this_command_name if it is
  239.     non-null and non-empty.
  240.  
  241.     * execute_cmd.c (execute_command_internal) A command run in a
  242.     subshell with `()' now runs trap 0 upon completion.  Only let
  243.     auto_resume resume stopped jobs.
  244.  
  245.     * execute_cmd.c: Set file descriptors to close on exec when
  246.     executing builtin commands.
  247.  
  248.     Conditionalize traditional behaviour;  BSD systems exec scripts
  249.     with csh when the first line of the script is `#' by itself.  This
  250.     now only happens if the cpp define HAVE_CSH exists.
  251.  
  252.     * makeargs.sh: If the file /bin/csh exists, then define HAVE_CSH
  253.     in sysdefs.h.
  254.  
  255.     * New define, DUP2_BROKEN determines whether the system's dup2
  256.     doesn't handle close-on-exec correctly.  Add it to SYSDEP_CFLAGS
  257.     in the machine description.  This was done for all Sequents.
  258.  
  259.     * execute_cmd.c (find_user_command_in_path) Use absolute_program
  260.     () instead of absolute_pathname ().
  261.  
  262.     * expr.c: Allowed any valid variable name.
  263.  
  264.     * fc.c: Error messages do not have "fc:" in them anymore.  Fixed
  265.     memory leak in fc_readline ().
  266.  
  267.     * general.c (itos) Use unsigned arithmetic after determining the
  268.     sign to about overflow errors.
  269.  
  270.     * execute_cmd.c, general.h: Moved macro declarations for setting
  271.     the close on exec flag so that shell.c and jobs.c can use them.
  272.  
  273.     * glob.c: #include "posixstat.h" instead of "sys/stat.h" on
  274.     systems where opendir () does not check whether the file being
  275.     opened is a directory.
  276.  
  277.     * jobs.c: Improved error messages.  Make the first command in a
  278.     pipeline block reading from a pipe until the last command is
  279.     created.  This solves all sync problems.
  280.  
  281.     New define "getpgid (pid)" gets around differences in getpgrp ()
  282.     calls on different systems.
  283.  
  284.     set_new_line_discipline () works on TERMIO systems without
  285.     NTTYDISC.
  286.  
  287.     * jobs.h: HP/UX systems barf on WIF* macros in sys/wait.h.  Use
  288.     our definitions in jobs.h instead.
  289.  
  290.     * machines.h: Numerous changes.  Compiler flags for MIPS.
  291.     Improved Encore machines.
  292.  
  293.     * makeargs.sh: Better tests for whoami and hostname.
  294.  
  295.     * nojobs.c: Changes to allow compilation on MINIX and BSD without
  296.     job control.
  297.  
  298.     * parse.y: Discard null input characters.
  299.     Properly count parens and quotes inside of $() and $[].
  300.     subst.c:(extract_delimited_string) also counts correctly.
  301.  
  302.     * posixstat.h: More definitions and fewer assumptions about the
  303.     target system.
  304.  
  305.     * shell.h: Provide a default shell_name when argv[0] is empty or
  306.     null.  Remove leading `-' from argv[0] on recursive calls to main
  307.     ().  Exit status made Posix compliant (127) for attempts to
  308.     execute a binary file, or a non-existant file.
  309.  
  310.     Test for existance of all signal definitions for
  311.     terminating_signals array;  assume nothing about target system.
  312.  
  313.     (throw_to_top_level) If using readline, reset readline function
  314.     pointers to avoid interrupted completion leaving them in a funny
  315.     state.
  316.  
  317.     subst.c: Separate out command substitution from the the main loop.
  318.     (string_extract_double_quoted) now allows new quoting rules from
  319.     Posix.2.
  320.  
  321.     * test.c: test -f behaviour now rigidly Posix.2 compliant.
  322.  
  323. Thu Feb 21 19:54:29 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  324.  
  325.     * jobs.c: Merged in changes to call POSIX signal functions.  Added
  326.     declarations to make those functions work on non-POSIX systems.
  327.     POSIXfied jobs.h.
  328.  
  329. Sun Feb 17 15:31:33 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  330.  
  331.     * glob.c (glob_vector (), glob_filename ()).  In case of interrupt
  332.     and compiled for Bash, then free arrays and throw to top level.
  333.  
  334.     * braces.c; (brace_expand) In case of an error, if compiled for
  335.     Bash, then throw to top level.  Errors are defined as:
  336.  
  337.     foo{   -> no error
  338.     foo{a, -> error
  339.     foo{}  -> no error
  340.     foo}   -> no error
  341.  
  342. Wed Jan 30 17:09:06 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  343.  
  344.     * Changed xrealloc to call xmalloc if the pointer argument was
  345.     NULL.  Changed all calls to xmalloc to xrealloc if they were
  346.     placed as a safegaurd against calling xrealloc on a NULL pointer.
  347.  
  348.     * replaced all occurences of <sys/stat.h> with "posixstat.h".
  349.  
  350. Mon Jun 11 16:34:38 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  351.  
  352.     * Change SYSV to USG everywhere (system V to "Unix Systems
  353.     Group").  In config.h, #define USG if SYSV is defined.
  354.     In machines.h, change `#define M_OS SYSV' to define USG instead.
  355.  
  356. Tue Jun     5 15:56:12 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  357.  
  358.     * execute_cmd.c: (extract_colon_unit) No longer skip leading `:'
  359.     by itself.  Instead return a string of length 0.
  360.  
  361. Thu May 24 17:36:40 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  362.  
  363.     * parse.y (shell_getc) Remember the value of the prompt when
  364.     getting a new line so that history errors and other "stay here"
  365.     faults reuse the same prompt. 
  366.  
  367. Wed May 23 05:12:20 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  368.  
  369.     * bashline.c; Fixed extra call to rl_add_defun in
  370.     initialize_readline (). 
  371.  
  372.     * ulimit.c (shell_umlimit) SYSV can handle setting the break max.
  373.     It does some things in 512 byte blocks, not 1k blocks.
  374.  
  375.     * builtins.c (kill_builtin) Exit value is FAILURE if any of the
  376.     arguments couldn't be killed, else SUCCESS.
  377.  
  378.     * subst.c New function dequote_string ().  Changed all places
  379.     where strings were being dequoted to call this function.
  380.     No longer give up on globbing the rest of the line if the first
  381.     glob fails, due to file system error.
  382.  
  383.     * parse.y, (yylex) Only check for mail when the PS1 prompt is to
  384.     be printed.  Save value of last_command_exit_value around calls to
  385.     execute the value of PROMPT_COMMAND.
  386.  
  387.     * machines.h: ports for sgi, i386 running MACH, and i386 Symmetry.
  388.       Port for Gould 9000 - UTX/32 R2.1A
  389.  
  390.     * jobs.c (execute_command_internal) allow the output of `jobs'
  391.     to be piped.
  392.  
  393. Tue May 15 02:24:30 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  394.  
  395.     * builtins.c (set_builtin) fixed type in call to strcmp ().
  396.  
  397. Fri Apr 27 20:30:40 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  398.  
  399.     * machines.h, jobs.c (initialize_jobs).  Fix things to work with
  400.     the SGI machines and OS.
  401.  
  402. Thu Apr 26 13:41:34 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  403.  
  404.     * builtins.c (read_builtin) New flag -r says not to ignore
  405.     backslash-newline pair in input text.
  406.  
  407.     * builtins.c: add "-f" to readonly and export builtins as per
  408.     POSIX specification.
  409.  
  410.     * execute_cmd.c (intern_function) report error if function cell is
  411.     already taken and the variable is already readonly.
  412.  
  413.     * parse.y: Surround YYACCEPT's in "if foo YYACCEPT; else..." with
  414.     curly braces to avoid bug in Sun's Yacc.
  415.  
  416. Mon Apr     9 19:35:51 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  417.  
  418.     * bashline.c: specific completion functions.  e.g. M-@ completes a
  419.     hostname, no matter what the first character of the word is, while
  420.     C-x @ lists possible hosts.
  421.  
  422.     * execute_cmd.c; (execute_simple_command) Pipelined functions call
  423.     execute_simple_command () directly so as to avoid extra forks
  424.     (which hid SIGPIPE signals).
  425.  
  426. Sun Apr     8 11:19:13 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  427.  
  428.     * bashline.c:snarf_hosts_from_file () Now accepts "$include
  429.     filename" and includes that file.  No limit to nesting.
  430.  
  431. Sat Apr     7 11:48:09 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  432.  
  433.     * execute_cmd.c: find_user_command_in_path (); swapped cases in if
  434.     statement for the sake of efficiency.  It is quicker to check two
  435.     variables than to call a function.  Only matters in 10 percent of
  436.     cases.
  437.  
  438.     * parse.y: read_secondary_line (); Cleaned up.  Duplicated code,
  439.     special case for when using readline library replaced with
  440.     prompt_again ().  New function reset_readline_prompt () keeps the
  441.     readline prompt in sync with the Bash prompt.
  442.  
  443. Thu Apr     5 13:32:35 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  444.  
  445.     * machines.h: added description for Apollo running Bsd.  Patched
  446.     readline.c at rl_restart_output (), also for Apollo.
  447.  
  448.     * execute_cmd.c; do_redirection (): no_clobber test is only valid
  449.     for regular files.  Devices and sockets are okay to "clobber".
  450.  
  451. Sun Apr     1 12:24:56 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  452.  
  453.     * parse.y: reserved_word_acceptable (); added WHILE and UNTIL to
  454.     the list of tokens which would allow bash command words to follow.
  455.     For example: while case hi in...
  456.  
  457. Wed Mar 21 11:08:11 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  458.  
  459.     * nojobs.c: initialize_job_signals ();    Use sigint_sighandler ()
  460.     instead of throw_to_top_level ().
  461.  
  462.     * shell.c: sigint_sighandler (); Reset signal handler to this
  463.     function so that Sys V machines can win.
  464.  
  465.     * parse.y: yy_readline_get (); use sigint_sighandler () rather
  466.     than throw_to_top_level ().
  467.  
  468.     * parse.y: pre_process_line (); Figure out how long PATH is before
  469.     alloca'ing the space for it.
  470.  
  471.     * builtins.c: history_builtin (); moved check for -s flag within
  472.     test for any arguments.
  473.  
  474.     * machines.h: convex has setlinebuf, but doesn't have vprintf.  It
  475.     also apparently runs something like Bsd.
  476.  
  477.     * jobs.c: wait_for ().  Only allow QUIT macro if bash owns the
  478.     terminal.
  479.  
  480.     * mailcheck.c: free_mail_files (); Don't free a NULL pointer.
  481.  
  482. Tue Mar 20 05:41:05 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  483.  
  484.     * parse.y: removed "inserted ;;" error message in CASE rule.
  485.  
  486. Mon Mar 12 01:25:29 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  487.  
  488.     * Makefile:
  489.  
  490.     * Fixed typos in subst.c (quoted = 2) --> (quoted == 2)
  491.  
  492. Sun Mar 11 04:28:30 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  493.  
  494.     * shell.h, subst.c, expand_word_internal ().  Here-documents don't
  495.     let backslash quote double-quote while being expanded.  Controlled
  496.     by the value of QUOTED passed into expand_word_internal ().  1 ==
  497.     expanding inside of double quotes, 2 = expanding a here document.
  498.  
  499.     * parse.y: handle_eof_unit () now alls reset_parser () before
  500.     calling logout_or_exit () to prevent incorrect parsing of the
  501.     .logout file.
  502.  
  503. Sat Mar 10 16:40:10 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  504.  
  505.     * execute_cmd.c: execute_command_internal ().  Fixed bug of
  506.     backgrounded shell control structures not being in the background.
  507.  
  508.     * subst.c: expand_word_internal (); If a command substitution
  509.     string was not closed properly, the shell could walk off of the
  510.     end of a string.  Fixed with simple test.
  511.  
  512.     * parse.y: shell_getc ();  now takes argument saying how to handle
  513.     backslash-newline.  All calls to shell_getc () adjusted.
  514.     read_token () adjusted to handle new scheme; it has to know when
  515.     to allow backslash newline, and when to ignore.
  516.  
  517.     * builtins.c: echo_builtin ();    Words ending in `\' handled
  518.     incorrectly, allowing a reference past the end of the string.
  519.     Fixed.
  520.  
  521.     * execute_cmd.c: find_user_command_in_path ();
  522.     if PATH ended with a `:', then that didn't mean to search
  523.     `.' for a file.  Now it does.
  524.  
  525.     * builtins.c: added hack to history_builtin ().  Let
  526.     history -s args produce output the way that ARGS would if typed
  527.     interactively.  Thus "history -s "!?ema" might produce
  528.     "ls -l emacs-18.55.tar.Z".
  529.  
  530.     * Added sun-cmd.termcap to the examples directory.
  531.  
  532.     * POSIX`fied jobs.c: new define tcsetpgrp () takes place of
  533.     ioctl TIOCSPGRP; order of setting pgrp and terminal pgrp now
  534.     pgrp first, then terminal next.
  535.  
  536. Fri Mar     9 00:04:53 1990  Brian Fox  (bfox at gnuwest)
  537.  
  538.     * subst.c: new function unquote_bang () removes backslashed `!'
  539.     from single-quoted strings after extracting them.
  540.  
  541. Sat Feb 24 13:40:12 1990  Brian Fox  (bfox at gnuwest.gnu.org)
  542.  
  543.     * parse.y:read_token (); backslash doesn't quote inside
  544.     of single quotes.  Esp. newline.
  545.  
  546. Tue Jan 30 09:23:13 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  547.  
  548.     * cpp-Makefile, machines.h, config.h:  HAVE_SETLINEBUF define is
  549.     defined or not in machines.h.
  550.  
  551.     * shell.c: main (); Line buffer stdout as well as stderr.
  552.  
  553.       builtins.c: type_builtin (), jobs_builtin (), alias_builtin (),
  554.       cd_builtin (), dirs_builtin ().  fflush (stdout) after printing.
  555.  
  556.       jobs.c: pretty_print_job (); fflush (stream) after printing.
  557.  
  558. Sat Jan 20 12:02:41 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  559.  
  560.     * unwind_prot.c: run_unwind_protects_internal () -- don't
  561.     run a non-existant function, like when the element is a
  562.     catch frame marker.
  563.  
  564. Fri Jan 19 16:57:31 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  565.  
  566.     * variables.c: getenv () now calls find_tempenv_variable () first
  567.     to find the most recent exported variable.
  568.  
  569.     * variables.c: find_tempenv_variable () -- new function.  Makes a
  570.     shell variable if one exists in the temporary environment for a
  571.     command and returns that, or NULL otherwise.  Used in
  572.     set_or_show_attributes (), found in builtins.c.  This specifically
  573.     allows shell builtins to get the value of variables in the local
  574.     environment for this command.
  575.  
  576.     * parse.y: pre_process_line ().  Don't do any preprocessing if
  577.     history_exapnsion_inhibited is on.  builtins.c: parse_and_execute
  578.     ().  Save and restore the value of history_expansion_inhibited,
  579.     not of history_expansion.  In this way, .bashrc files can set or
  580.     clear this flag with "set +o".
  581.  
  582. Thu Jan 18 19:52:02 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  583.  
  584.     * builtins.c: All builtins use builtin_error () instead of
  585.     report_error ().  All builtins have a return value.
  586.     get_numeric_value () no longer takes FOR_WHOM argument.  The value
  587.     is now taken from THIS_COMMAND_NAME.  Ditto for no_args ().
  588.  
  589.     * builtins.c: new function builtin_error () is similar to
  590.     report_error (), but can never exit the shell, and uses the value
  591.     of this_command_name in reports.
  592.  
  593. Fri Jan     5 11:12:31 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  594.  
  595.     * variables.c: initialize_shell_variables ().  Added new variable
  596.     HOSTTYPE which contains the machine type that this shell is
  597.     compiled on.  Also affected Makefile for additional define and
  598.     rule for variables.c.
  599.  
  600.     * parse.y: pre_process_line ().  In the case of ALIAS not being
  601.     defined, a non-malloced string could be returned.  Fixed by
  602.     calling savestring (line) in that case.
  603.  
  604.     * execute_cmd.c: do_redirections (), do_redirect ():
  605.       Added noclobber variable.  If set redirections are
  606.       not allowed to overwrite existing files.  Also affected subst.c:
  607.       stupidly_hack_variables.
  608.  
  609. Thu Jan     4 11:51:25 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  610.  
  611.     * builtins.c: pushd_builtin (), popd_builtin ().  If variable
  612.     "pushd_silent" exists don't print out new directory after cd'ing.
  613.     Allow pushd and popd to take "-NUM" args -- they count back from
  614.     the end of the list.
  615.  
  616. Wed Jan     3 11:42:30 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  617.  
  618.     * Gave variables two cells; one for value, one for functions.
  619.       This modifies a large number of files.  The function cell of
  620.       a variable is addressed with "function_cell (var)"; this can be
  621.       a LHS.   The value cell is addressed with "value_cell (var)".
  622.       There is no more att_function; you can still check to see if the
  623.       variable has a function value with function_p (var).
  624.  
  625. Mon Sep     4 18:30:33 1989  Brian Fox  (bfox at aurel)
  626.  
  627.     * copy_command.c: copy_command ().  Don't forget to copy
  628.       the command redirections.
  629.  
  630. Sun Sep     3 08:23:04 1989  Brian Fox  (bfox at aurel)
  631.  
  632.     * readline.c: update_display ().  Fixed printing of initial
  633.       character on line twice bug. 
  634.  
  635. Fri Sep     1 18:52:08 1989  Brian Fox  (bfox at aurel)
  636.  
  637.     * readline.c: rl_insert ().  Optimized for large amounts
  638.       of typeahead.  Insert all insertable characters at once.
  639.  
  640.     * I update this too irregularly.
  641.       Released 1.03.
  642.  
  643.       jobs.c: stop_pipeline ().  If THE_PIPELINE is null, don't
  644.       try to install it as a job.
  645.  
  646.       execute_command.c: execute_simple_command ().  Fixed call
  647.       to stop_pipeline () by adding required arguments.
  648.  
  649.       parse.y: yy_error (), new function report_syntax_error ().
  650.            CASE case uses report_syntax_error ().
  651.       shell.c: main (). If the input to the shell is a command file,
  652.       then remember the name of the file in with_input_from_stream ().
  653.  
  654. Tue Aug     8 18:11:54 1989  Brian Fox  (bfox at aurel)
  655.  
  656.     * general.c: strindex () now placed there.  Static version
  657.       is in readline.c.
  658.  
  659.     * execute_cmd.c: If the shell is to read a file as commands,
  660.       and the file appears to contain non-ascii characters, then
  661.       complain about it being a binary file.
  662.  
  663. Sun Aug     6 13:07:41 1989  Brian Fox  (bfox at aurel)
  664.  
  665.     * unwind_prot.c: Added tag based unwind frames.
  666.       begin_unwind_frame ("foo");
  667.         add_unwind_protect (free, data);
  668.         add_unwind_protect (free, data);
  669.         ...
  670.       run_unwind_frame ("foo");
  671.  
  672.     * readline.c: Added input buffer management, and event
  673.       input.
  674.       rl_event_hook, if non-zero, is the address of a function to
  675.       call repeatadly while polling for input.
  676.  
  677.       rl_stuff_char (char) pushes CHAR onto input ring.
  678.  
  679.       rl_get_char (&char) (when returning non-zero) pops the front of
  680.       the input ring, placing it into CHAR (an int).
  681.  
  682.       rl_gather_tyi () puts characters into input ring if available.
  683.  
  684.     * execute_cmd.c: execute_simple_command (): even when a function
  685.       is being piped we need to set return_catch_flag.
  686.  
  687. Sat Aug     5 08:32:05 1989  Brian Fox  (bfox at aurel)
  688.  
  689.     * variables.c: make_var_array (), initialize_shell_variables ()
  690.       Added exporting of functions.
  691.  
  692.     * read_builtin (): reads characters singly from stdin, allowing
  693.       backslash-newline to pass.
  694.  
  695.     * test.c: use access () instead of opening files.
  696.  
  697.     * numerous files, parse_and_execute (), with_input_from...
  698.       Added stream_name to contents of pushed and popped streams,
  699.       and to functions that push and pop streams.  yyerror () uses
  700.       this to aid in reporting errors.
  701.  
  702. Fri Aug     4 12:35:08 1989  Brian Fox  (bfox at aurel)
  703.  
  704.     * copy_cmd.c copy_redirect (): case of r_read_until falls through
  705.       to copy the actual here-document.
  706.  
  707. Wed Aug     2 11:47:50 1989  Brian Fox  (bfox at aurel)
  708.  
  709.     * builtins.c:cd_builtin (): if the shell variable "cdable_vars"
  710.       exists, and the directory specified cannot be changed to, either
  711.       first with CDPATH or directly, the the directory name is looked
  712.       up in the list of shell variables.  If it exists, and is a
  713.       string, then that value is tried.
  714.  
  715.     * test.c: moved `!' operator to term () from expr ()
  716.  
  717. Tue Aug     1 16:03:32 1989  Brian Fox  (bfox at aurel)
  718.  
  719.     * execute_cmd.c, builtins.c: global variable return_catch_value
  720.       now contains the value of `return' calls.
  721.  
  722.     * parse.y: current_readline_prompt gets NULL after it is freed.
  723.  
  724. Sun Jul 16 07:51:46 1989  Brian Fox  (bfox at aurel)
  725.  
  726.     * test.c: Added -S to test for file being a socket.
  727.       builtins.c: Added documentation for -S test.
  728.  
  729.     * execute_cmd.c: execute_case_command ()
  730.       The clause patterns are now expanded before being
  731.       matched against.
  732.  
  733. Tue Jul 11 05:30:58 1989  Brian Fox  (bfox at aurel)
  734.  
  735.     * parse.y:yy_readline_get ()
  736.       Fixed bug with readline returning EOF.
  737.  
  738.     * All files
  739.       Changed #ifndef NOJOBS to #ifdef JOB_CONTROL.
  740.  
  741. Sat Jul     8 05:02:39 1989  Brian Fox  (bfox at aurel)
  742.  
  743.     * parse.y
  744.       New command type `Group' is for running commands in `{}'.  This
  745.       allows all of the commands to be piped at the same time.
  746.  
  747. Wed Jun 28 16:51:42 1989  Brian Fox  (bfox at aurel)
  748.  
  749.     * New directory: LIB contains readline and history stuff,
  750.       and is Make-able on its own.  Also contains its own
  751.       ChangeLog.
  752.  
  753.     * history.c: removed shell dependent stuff, made into module
  754.       in readline library.
  755.  
  756. Tue Jun 27 13:05:54 1989  Brian Fox  (bfox at aurel)
  757.  
  758.     * readline.c: removed shell dependent stuff.
  759.  
  760.     * New file: bashline.c contains all of the shell specific
  761.       readline material in an attempt to begin using the
  762.       readline stuff as a library.
  763.  
  764.  
  765. Mon Jun 26 13:35:16 1989  Brian Fox  (bfox at aurel)
  766.  
  767.     * parse.y
  768.        Fixed problem in read_token () which prevented '{' from
  769.        being recognized after "c () {".  Changed
  770.        reserved_word_acceptable () to know about `{' as precursor
  771.        to commands.
  772.  
  773.     * readline.c, jobs.c
  774.        Make commands that do not complete sucessfully restore the
  775.        tty state to whatever it was before the command was executed.
  776.